home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Science / µSim 1.0b5 folder / Libs / RegistrationUSA.r < prev    next >
Encoding:
Text File  |  1994-06-27  |  6.0 KB  |  283 lines  |  [TEXT/MMCC]

  1. /*
  2. Copyright © 1993,1994 by Fabrizio Oddone
  3. ••• ••• ••• ••• ••• ••• ••• ••• ••• •••
  4. This source code is distributed as freeware: you can copy, exchange, modify this
  5. code as you wish. You may include this code in any kind of application: freeware,
  6. shareware, or commercial, provided that full credits are given.
  7. You may not sell or distribute this code for profit.
  8. */
  9.  
  10. #define NumTextLines        2
  11.  
  12. resource 'ALRT' (201, purgeable) {
  13.     {AlertTop, AlertLeft, AlertBottom, AlertRight},
  14.     201,
  15.     {    /* array: 4 elements */
  16.         /* [1] */
  17.         OK, visible, sound2,
  18.         /* [2] */
  19.         OK, visible, sound2,
  20.         /* [3] */
  21.         OK, visible, sound2,
  22.         /* [4] */
  23.         OK, visible, sound2
  24.     },
  25.     alertPositionMainScreen
  26. };
  27.  
  28. resource 'DITL' (201, purgeable) {
  29.     {    /* array DITLarray: 2 elements */
  30.         /* [1] */
  31.         {ButtonTop, ActionButtonLeft, ButtonBottom, ActionButtonRight},
  32.         Button {
  33.             enabled,
  34.             "OK"
  35.         },
  36.         /* [2] */
  37.         {TextTop, TextLeft, TextBottom, TextRight},
  38.         StaticText {
  39.             disabled,
  40.             "You cannot save over an existing document; please try again."
  41.         }
  42.     }
  43. };
  44.  
  45. #define NumTextLines        6
  46.  
  47. resource 'ALRT' (202, purgeable) {
  48.     {AlertTop, AlertLeft, AlertBottom, AlertRight},
  49.     202,
  50.     {    /* array: 4 elements */
  51.         /* [1] */
  52.         OK, visible, silent,
  53.         /* [2] */
  54.         OK, visible, silent,
  55.         /* [3] */
  56.         OK, visible, silent,
  57.         /* [4] */
  58.         OK, visible, silent
  59.     },
  60.     alertPositionMainScreen
  61. };
  62.  
  63. resource 'DITL' (202, purgeable) {
  64.     {    /* array DITLarray: 2 elements */
  65.         /* [1] */
  66.         {ButtonTop, ActionButtonLeft, ButtonBottom, ActionButtonRight},
  67.         Button {
  68.             enabled,
  69.             "OK"
  70.         },
  71.         /* [2] */
  72.         {TextTop, TextLeft, TextBottom, TextRight},
  73.         StaticText {
  74.             disabled,
  75.             "The document “^0” has been successfully saved. "
  76.             "You may print this document with SimpleText or your favorite "
  77.             "text editing application."
  78.         }
  79.     }
  80. };
  81.  
  82. #define NumTextLines        5
  83.  
  84. resource 'ALRT' (203, purgeable) {
  85.     {AlertTop, AlertLeft, AlertBottom, AlertRight},
  86.     203,
  87.     {    /* array: 4 elements */
  88.         /* [1] */
  89.         OK, visible, sound1,
  90.         /* [2] */
  91.         OK, visible, sound1,
  92.         /* [3] */
  93.         OK, visible, sound1,
  94.         /* [4] */
  95.         OK, visible, sound1
  96.     },
  97.     alertPositionMainScreen
  98. };
  99.  
  100. resource 'DITL' (203, purgeable) {
  101.     {    /* array DITLarray: 2 elements */
  102.         /* [1] */
  103.         {ButtonTop, ActionButtonLeft, ButtonBottom, ActionButtonRight},
  104.         Button {
  105.             enabled,
  106.             "OK"
  107.         },
  108.         /* [2] */
  109.         {TextTop, TextLeft, TextBottom, TextRight},
  110.         StaticText {
  111.             disabled,
  112.             "The document “^0” has NOT been successfully saved, "
  113.             "because the disk is full. "
  114.             "Try saving onto another disk."
  115.         }
  116.     }
  117. };
  118.  
  119. #define NumTextLines        5
  120.  
  121. resource 'ALRT' (204, purgeable) {
  122.     {AlertTop, AlertLeft, AlertBottom, AlertRight},
  123.     204,
  124.     {    /* array: 4 elements */
  125.         /* [1] */
  126.         OK, visible, sound1,
  127.         /* [2] */
  128.         OK, visible, sound1,
  129.         /* [3] */
  130.         OK, visible, sound1,
  131.         /* [4] */
  132.         OK, visible, sound1
  133.     },
  134.     alertPositionMainScreen
  135. };
  136.  
  137. resource 'DITL' (204, purgeable) {
  138.     {    /* array DITLarray: 2 elements */
  139.         /* [1] */
  140.         {ButtonTop, ActionButtonLeft, ButtonBottom, ActionButtonRight},
  141.         Button {
  142.             enabled,
  143.             "OK"
  144.         },
  145.         /* [2] */
  146.         {TextTop, TextLeft, TextBottom, TextRight},
  147.         StaticText {
  148.             disabled,
  149.             "The document “^0” has NOT been successfully saved, "
  150.             "because of an error ^1. "
  151.             "Try saving onto another disk."
  152.         }
  153.     }
  154. };
  155.  
  156. #define NumTextLines        2
  157.  
  158. resource 'ALRT' (205, purgeable) {
  159.     {AlertTop, AlertLeft, AlertBottom, AlertRight},
  160.     205,
  161.     {    /* array: 4 elements */
  162.         /* [1] */
  163.         OK, visible, sound1,
  164.         /* [2] */
  165.         OK, visible, sound1,
  166.         /* [3] */
  167.         OK, visible, sound1,
  168.         /* [4] */
  169.         OK, visible, sound1
  170.     },
  171.     alertPositionMainScreen
  172. };
  173.  
  174. resource 'DITL' (205, purgeable) {
  175.     {    /* array DITLarray: 2 elements */
  176.         /* [1] */
  177.         {ButtonTop, ActionButtonLeft, ButtonBottom, ActionButtonRight},
  178.         Button {
  179.             enabled,
  180.             "OK"
  181.         },
  182.         /* [2] */
  183.         {TextTop, TextLeft, TextBottom, TextRight},
  184.         StaticText {
  185.             disabled,
  186.             "Could not open the document for writing. "
  187.             "Try saving onto another disk."
  188.         }
  189.     }
  190. };
  191.  
  192. #define NumTextLines        2
  193.  
  194. resource 'ALRT' (206, purgeable) {
  195.     {AlertTop, AlertLeft, AlertBottom, AlertRight},
  196.     206,
  197.     {    /* array: 4 elements */
  198.         /* [1] */
  199.         OK, visible, sound1,
  200.         /* [2] */
  201.         OK, visible, sound1,
  202.         /* [3] */
  203.         OK, visible, sound1,
  204.         /* [4] */
  205.         OK, visible, sound1
  206.     },
  207.     alertPositionMainScreen
  208. };
  209.  
  210. resource 'DITL' (206, purgeable) {
  211.     {    /* array DITLarray: 2 elements */
  212.         /* [1] */
  213.         {ButtonTop, ActionButtonLeft, ButtonBottom, ActionButtonRight},
  214.         Button {
  215.             enabled,
  216.             "OK"
  217.         },
  218.         /* [2] */
  219.         {TextTop, TextLeft, TextBottom, TextRight},
  220.         StaticText {
  221.             disabled,
  222.             "Could not create the document. "
  223.             "Try saving it with another name."
  224.         }
  225.     }
  226. };
  227.  
  228. resource 'STR ' (300, purgeable) {
  229.     "Save registration form as:"
  230. };
  231.  
  232. resource 'STR ' (301, purgeable) {
  233.     "Registration"
  234. };
  235.  
  236. resource 'STR ' (302, purgeable) {
  237.     "0123456789\b\$7F"
  238. };
  239.  
  240. resource 'STR#' (1100, purgeable) {
  241.     {
  242.         /* [1] ok */
  243.             "To save the registration form in a text document, click here.",
  244.         /* [2] cancel */
  245.             "To cancel, click here.",
  246.         /* [3] Name */
  247.             "Enter here your full name.",
  248.         /* [4] Company */
  249.             "Enter here your company name, when applicable.",
  250.         /* [5] Address */
  251.             "Enter here your address.",
  252.         /* [6] City */
  253.             "Enter here your city.",
  254.         /* [7] State */
  255.             "Enter here your state.",
  256.         /* [8] ZIP */
  257.             "Enter here your ZIP code.",
  258.         /* [9] Country */
  259.             "Enter here your country name.",
  260.         /* [10] e-mail */
  261.             "Enter here your electronic mail addresses. This is important because you can obtain "
  262.             "upgrades from me via e-mail. "
  263.             "(i.e. Internet, America Online, Compuserve, AppleLink, MCI Mail, etc.)",
  264.         /* [11] Phone */
  265.             "Enter here your phone number, if you wish.",
  266.         /* [12] FAX */
  267.             "Enter here your fax phone number, if you wish.",
  268.         /* [13] copies */
  269.             MACRO_COPIES,
  270.         /* [14] from */
  271.             "Enter here how did you know this software exists, and how did you obtain it. "
  272.             "(i.e. a friend, a Mac User Group, a Bulletin Board System, a CD-ROM, "
  273.             "a magazine, an Internet site, etc.)",
  274.         /* [15] suggestions */
  275.             "Enter here your comments about this software. Let me know your suggestions, problems, "
  276.             "anything you could think of.",
  277.         /* [16] price */
  278.             "Here appears the sum due for this software. The more copies you "
  279.             "buy, the less you pay per copy.",
  280.     }
  281. };
  282.  
  283.